home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.09 Sep 94 / Getting Started / CPops.h < prev    next >
Encoding:
Text File  |  1994-08-19  |  315 b   |  26 lines  |  [TEXT/R*ch]

  1. //CPops.h
  2.  
  3. #ifndef __CPops__
  4. #define __CPops__
  5.  
  6. #ifndef __CGramps__
  7. #include "CGramps.h"
  8. #endif
  9.  
  10.  
  11. //----------------------------------  CPops:CGramps
  12.  
  13. class CPops : public CGramps
  14. {
  15. // Data members...
  16.     protected:
  17.         int            popsDataMember;
  18.  
  19. // Member functions...
  20.     public:
  21.                     CPops();
  22.         virtual    ~CPops();
  23. };
  24.  
  25. #endif
  26.